std::swap(std::forward_list)
From Cppreference
< cpp | container | forward list
| template< class T, class Allocator >
void swap( forward_list<T,Allocator> &lhs, forward_list<T,Allocator> &rhs); |
||
Swaps the contents of lhs and rhs. Calls lhs.swap(rhs).
Contents |
[edit] Parameters
| lhs, rhs | - | containers whose contents to swap |
[edit] Return value
(none)
[edit] Complexity
| This section is incomplete |
[edit] See also
|
swaps the contents (public member function) |
|